#map .container {
    gap: 2em;
}

#map #mapContent {
    position: relative;
    width:100%;
    height:500px;
    border-radius: 20px;
    box-shadow: 0px 14px 60px 0px rgba(0, 0, 0, 0.07);
}
#map #mapContent ymaps {
    border-radius: 20px;
}
#map #mapContent .ymaps3x0--map-copyrights_right {
    left: 0;
    right: auto;
}
#map .marker {
    height: 30px;
    transform: translateX(-12px) translateY(-30px);
}

#map .info {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 50px 0 20px 0;
    padding: 2em 3em;
    z-index: 1;
    box-shadow: -15px -16px 60px 0px rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: all 0.2s cubic-bezier(0.47, 0, 0.75, 0.72);
}
#map .info h2 {
    font-weight: 500;
}
#map .info p {
    padding-left: 2px;
}
#map .info:hover {
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.4);
}